home *** CD-ROM | disk | FTP | other *** search
/ Aminet 43 / Aminet 43 (2001)(GTI - Schatztruhe)[!][Jun 2001].iso / Aminet / mus / misc / mp32html.lha / MP3-2-HTML / Install next >
Text File  |  2001-03-13  |  1KB  |  54 lines

  1. ; MP3-2-HTML v2.9 Installer Script
  2. ; $VER: MP3-2-HTML Install Script (14-03-2001)
  3. ; (C) 2001 Gareth Griffiths <mail@gazchap.com>
  4. ; Only for distribution in the MP3-2-HTML archive.
  5.  
  6. ;------ Define Procedures ------;
  7.     (procedure P_CLI-install
  8.         (complete 25)
  9.         (set @default-dest
  10.             (askdir
  11.                 (prompt "Where do you want to install MP3-2-HTML?\n\nA drawer named 'MP3-2-HTML' will be created.")
  12.                 (help @askdir-help)
  13.                 (default "Workbench:Utilities")
  14.             )
  15.         )
  16.         (set #default-dest
  17.             (tackon @default-dest "MP3-2-HTML/")
  18.         )
  19.         (makedir #default-dest
  20.             (infos)
  21.         )
  22.         (complete 50)
  23.         (working "Installing executable...")
  24.         (copyfiles
  25.             (prompt "Installing executable...")
  26.             (help @copyfiles-help)
  27.             (source "MP3-2-HTML")
  28.             (dest #default-dest)
  29.             (infos)
  30.         )
  31.         (complete 75)
  32.         (working "Installing documentation...")
  33.         (copyfiles
  34.             (prompt "Installing documentation...")
  35.             (help @copyfiles-help)
  36.             (source "MP3-2-HTML.guide")
  37.             (dest #default-dest)
  38.             (infos)
  39.         )
  40.         (complete 100)
  41.     )
  42.  
  43. ;------ Main installation ------;
  44.  
  45. (message "Welcome to the MP3-2-HTML installation script.\n\n"
  46.             "This script installs MP3-2-HTML to your system.\n\n"
  47.             "MP3-2-HTML is ©1999-2001 Gareth 'GazChap' Griffiths.\n"
  48.             "http://www.gazchap.btinternet.co.uk/mp32html"
  49. )
  50.  
  51. (P_CLI-install)
  52.  
  53. (exit)
  54.